home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / GraphicViewers / pCD / Source / ImageView.h < prev    next >
Text File  |  1993-01-11  |  213b  |  14 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface ImageView:View
  4. {
  5.     id    theImage;
  6.     NXRect    selectRect;
  7. }
  8.  
  9. - initForImage:(id)img :(const NXRect *)rect;
  10. - (BOOL)acceptsFirstResponder;
  11. - (BOOL)acceptsFirstMouse;
  12. - (id) image;
  13.  
  14. @end